home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 3.2
/
Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO
/
packet
/
n17jsrc
/
ftp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-12-11
|
412b
|
17 lines
#ifndef _FTP_H
#define _FTP_H
/* Definitions common to both FTP servers and clients */
#define BLKSIZE 2048 /* Chunk size for file I/O */
#define ASCII_TYPE 0
#define IMAGE_TYPE 1
#define LOGICAL_TYPE 2
/* In ftpsubr.c: */
long sendfile __ARGS((FILE *fp,int s,int mode,int hash));
long recvfile __ARGS((FILE *fp,int s,int mode,int hash));
int isbinary __ARGS((FILE *fp));
#endif /* _FTP_H */